4658623886971a68cc894e5405c6b3406b0e7fe3,java/org/apache/tomcat/util/bcel/classfile/ConstantInvokeDynamic.java,ConstantInvokeDynamic,ConstantInvokeDynamic,#DataInput#,45

Before Change


     * @throws IOException
     */
    ConstantInvokeDynamic(DataInput file) throws IOException {
        this(file.readUnsignedShort(), file.readUnsignedShort());
    }


    public ConstantInvokeDynamic(int bootstrap_method_attr_index,

After Change


     */
    ConstantInvokeDynamic(DataInput file) throws IOException {
        this();
        file.readUnsignedShort();
        file.readUnsignedShort();
    }